home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Freeware / Adobe Air 1.5 / AdobeAIRInstaller.exe / setup.swf / scripts / mx / containers / utilityClasses / Layout.as < prev   
Encoding:
Text File  |  2008-10-29  |  956 b   |  44 lines

  1. package mx.containers.utilityClasses
  2. {
  3.    import mx.core.Container;
  4.    import mx.core.mx_internal;
  5.    import mx.resources.IResourceManager;
  6.    import mx.resources.ResourceManager;
  7.    
  8.    use namespace mx_internal;
  9.    
  10.    public class Layout
  11.    {
  12.       mx_internal static const VERSION:String = "3.0.0.0";
  13.       
  14.       private var _target:Container;
  15.       
  16.       protected var resourceManager:IResourceManager;
  17.       
  18.       public function Layout()
  19.       {
  20.          resourceManager = ResourceManager.getInstance();
  21.          super();
  22.       }
  23.       
  24.       public function get target() : Container
  25.       {
  26.          return _target;
  27.       }
  28.       
  29.       public function set target(param1:Container) : void
  30.       {
  31.          _target = param1;
  32.       }
  33.       
  34.       public function measure() : void
  35.       {
  36.       }
  37.       
  38.       public function updateDisplayList(param1:Number, param2:Number) : void
  39.       {
  40.       }
  41.    }
  42. }
  43.  
  44.